home *** CD-ROM | disk | FTP | other *** search
/ Micro Dingo 39 / Micro_Dingo_39_CD1.mdx / Delires / Hentai / sim.swf / scripts / DefineButton2_190 / BUTTONCONDACTION on(release, keyPress c).as
Text File  |  2002-05-21  |  346b  |  21 lines

  1. on(release, keyPress "c"){
  2.    if(state >= 2)
  3.    {
  4.       if(hp >= 5)
  5.       {
  6.          hp -= 5;
  7.          ratio = (0.5 * ch + 0.4 * st + 0.1 * kn) / 100;
  8.          ship += 2.5 * ratio;
  9.          gotoAndPlay(65);
  10.       }
  11.       else if(state)
  12.       {
  13.          gotoAndStop(96);
  14.       }
  15.    }
  16.    else
  17.    {
  18.       gotoAndStop(96);
  19.    }
  20. }
  21.